home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / gfx / x11 / twm_930531.lha / twm / README.Amiga < prev    next >
Text File  |  1993-05-31  |  4KB  |  85 lines

  1. Hi there.
  2.  
  3. This is the twm window manager for DaggeX, the Amiga PD X11
  4. server by Kari J.  Mettinen <mettinen@kruuna.helsinki.fi> and
  5. Leonard K.  Norrgård <vinsci@nic.funet.fi>.
  6.  
  7. The executable in this archive was compiled for 68020.  You need
  8. gcc, imake, sed, yacc, flex and the Xincludes and Xlibs to
  9. recompile twm, and groff works fine for the man pages.
  10.  
  11. I made some minor changes in order to get it running:
  12.  
  13.  - had to change Imakefile to make it work with dmake and ksh
  14.  - put in default values for black and white in twm.c
  15.  - added "yyin = twmrc" to parse.c
  16.  - put in a bunch of unnecessary debug printfs in events.c
  17.  
  18. Installation is nearly as simple as compiling.  Just move twm to
  19. a place in your path, set/setenv HOME to something like s:  and
  20. move .twmrc there. Copy s/sxc to s: and check it's script bit.
  21.  
  22. My startup of DaggeX and twm currently looks like this:
  23.  
  24. assign X: ""
  25. assign inet: sys:inet
  26. assign libs: inet:libs add
  27. path bin add
  28. ;run c:mungwall nametag
  29. ;run sys:system/enforcer on
  30. set HOSTNAME 127.0.0.1
  31. set DISPLAY  127.0.0.1:0
  32. set XAUTHORITY /hd1/x/.Xauthority
  33. set HOME /s
  34. stack 250000
  35. changetaskpri 1
  36. run DaggeX_local -auth $XAUTHORITY -fp /hd1/x/fonts >nil:
  37. ask "Press RETURN to start twm..."
  38. changetaskpri 0
  39. run twm >nil:
  40. echo "X system up and running! Have fun!"
  41.  
  42. I'll have a look at xdm and xinit to see if the ask command can
  43. be avoided somehow.
  44.  
  45. My current .twmrc is just a slight extension of the system
  46. defaults "system.twmrc", which btw should be move to the new
  47. directory "usr:lib/X11/twm". There are some more advanced
  48. examples in sample-twmrc and the complete syntax is documented in
  49. twm.doc. Take care to not assign any vital functions to Button #2
  50. if you don't have a mouse with three buttons...  ;-)
  51.  
  52. The script "sxc" is for starting up X clients via f.exec (see
  53. "clients" menu in sample .twmrc). Tailor to your own config.
  54.  
  55. And, as always: Have fun!
  56.  
  57. Michael Balzer
  58. (EMail at work: balzer@heike.informatik.uni-dortmund.de,
  59. at home: bilbo@bagsend.aworld.de)
  60.  
  61. /**       Copyright 1988 by Evans & Sutherland Computer Corporation,        **/
  62. /**                          Salt Lake City, Utah                           **/
  63. /**  Portions Copyright 1989 by the Massachusetts Institute of Technology   **/
  64. /**                        Cambridge, Massachusetts                         **/
  65. /**                                                                         **/
  66. /**                           All Rights Reserved                           **/
  67. /**                                                                         **/
  68. /**    Permission to use, copy, modify, and distribute this software and    **/
  69. /**    its documentation  for  any  purpose  and  without  fee is hereby    **/
  70. /**    granted, provided that the above copyright notice appear  in  all    **/
  71. /**    copies and that both  that  copyright  notice  and  this  permis-    **/
  72. /**    sion  notice appear in supporting  documentation,  and  that  the    **/
  73. /**    names of Evans & Sutherland and M.I.T. not be used in advertising    **/
  74. /**    in publicity pertaining to distribution of the  software  without    **/
  75. /**    specific, written prior permission.                                  **/
  76. /**                                                                         **/
  77. /**    EVANS & SUTHERLAND AND M.I.T. DISCLAIM ALL WARRANTIES WITH REGARD    **/
  78. /**    TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES  OF  MERCHANT-    **/
  79. /**    ABILITY  AND  FITNESS,  IN  NO  EVENT SHALL EVANS & SUTHERLAND OR    **/
  80. /**    M.I.T. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL  DAM-    **/
  81. /**    AGES OR  ANY DAMAGES WHATSOEVER  RESULTING FROM LOSS OF USE, DATA    **/
  82. /**    OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER    **/
  83. /**    TORTIOUS ACTION, ARISING OUT OF OR IN  CONNECTION  WITH  THE  USE    **/
  84. /**    OR PERFORMANCE OF THIS SOFTWARE.                                     **/
  85.